home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / pm-utils / sleep.d / 00logging < prev    next >
Text File  |  2009-10-06  |  274b  |  15 lines

  1. #!/bin/sh
  2. # Log some extra information at the beginning of a suspend/resume cycle.
  3. # TODO: Make this hook only run when PM_DEBUG is true?
  4.  
  5. . "${PM_FUNCTIONS}"
  6.  
  7. case "$1" in
  8.         hibernate|suspend)
  9.         [ -n "$PM_LOGFILE" ] || exit 0
  10.         /bin/uname -a
  11.         lsmod
  12.         free
  13.         ;;
  14. esac
  15.